home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / sound / rsynth22.zip / TRIE.H < prev    next >
C/C++ Source or Header  |  1994-11-08  |  224b  |  7 lines

  1. /* $Id: trie.h,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
  2. */
  3. typedef struct trie_s *trie_ptr;
  4.  
  5. extern void trie_insert PROTO((trie_ptr *r,char *s,void *value));
  6. extern void *trie_lookup PROTO((trie_ptr *r,char **sp));
  7.